home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / msdos / raytrace / pov / gen / pvcoil21 / coil.pov < prev    next >
Text File  |  1993-09-13  |  599b  |  39 lines

  1. // Persistence of Vision Raytracer
  2. // Shape Test file
  3.  
  4. #include "shapes.inc"
  5. #include "colors.inc"
  6. #include "textures.inc"
  7.  
  8. camera {
  9.    location <0.0 -8.0  1.0>
  10.    direction <0.0 1.0  0.0>
  11.    up  <0.0  0.0  1.0>
  12.    right <1.33333 0.0 0.0>
  13. }
  14.  
  15. object {
  16.    plane {<0.0 0.0 1.0> -10.0 }
  17.    colour White
  18.    texture {
  19.       colour SeaGreen
  20.       ambient 0.2
  21.       diffuse 0.8
  22.    }
  23. }
  24.  
  25. //Include Shape to be tested
  26. #include "coil.inc"
  27.  
  28. object {
  29.    coil
  30.    rotate <45.0 0.0 0.0>
  31. }
  32.  
  33. //Light Source
  34. object {
  35.    light_source { <10.0 -50.0 1000.0>
  36.       colour White
  37.    }
  38. }
  39.